/* GENERAL STYLES *******/
/** sticky header **/
.header {
    width: 100%;
    position: fixed;
    z-index: 999;
}
.hero-title {
    }
/* default links styles*/
a {
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
a:hover {
    color: #d8d8d8;
    text-decoration: none;
}
/*** mobile ***/
@media screen and (max-width: 960px) {
    .hero-title {
        font-size: 20px;
    }
    .zptext-align-right {
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
        .hero-title {
            font-size: 20px;
        } 
        .zptext-align-right {
            text-align: center;
        }  
}
/****/

/* ICON + TEXT SECTION *******/
.icon-text-container1 {
    width: 100%;
    float: left;
    clear: both;
    border: 0px solid;
    box-sizing: border-box;
    margin: 10px;
    padding: 0;
    background: none;
}
.icon1 {
  	display: block;
    float: left;
    clear: none;
    margin-top: 0px;
    margin-right: 15px;
}
.text1 {
  	display: block;
    float: left;
    clear: none;
    margin-top: 0px;
    padding: 6px 0 0 6px;
}
.icon1 {
    margin-right: 5px;
}
/*** mobile ***/
@media screen and (max-width: 960px) {
     .icon-text-container1 {
        width: 50%;
        float: left;
        clear: none;
        margin: 0px;
    }
    .text1 {
    padding: 0px 0 0 0px;
}
}
/****/



